If you are finding that the xwork configuration is not reloaded when you redeploy your war. Is there a way to tell webwork to unload its configuration when the context is destroyed.
Try to call
com.opensymphony.xwork.config.ConfigurationManager.destroyConfiguration()
| Useful Information
This should destroy the current configuration and perform a config reload on next request. You can use a action for do it. |
another tip
This is another option that you can use, change for true.
### Configuration reloading
### This will cause the configuration to reload xwork.xml when it is changed
webwork.configuration.xml.reload=false
|